scrapboxのtitleをnav barに固定するUserCSS
from
確かにスクロールすると「どこのプロジェクトにいたんだっけ?」となるので必要かも
code:style.css
@media screen {
.quick-launch .project-home {
position: fixed;
top: -3px;
left: 45px;
z-index: 1000;
}
}
@media screen and (min-width: 768px) and (max-width: 991px) {
.quick-launch .project-home {
left: 60px;
}
}
@media screen and (min-width: 992px) and (max-width: 1260px) {
.quick-launch .project-home {
left: 75px;
}
}
@media screen and (min-width: 1261px) {
.quick-launch .project-home {
left: calc((100% - 1280px)/2 + 70px);
}
}
.quick-launch .project-home {
font-weight: 400;
letter-spacing: 0.2em;
}